crypto/md5.digest.s (field)
25 uses
crypto/md5 (current package)
md5.go#L39: s [4]uint32
md5.go#L46: d.s[0] = init0
md5.go#L47: d.s[1] = init1
md5.go#L48: d.s[2] = init2
md5.go#L49: d.s[3] = init3
md5.go#L62: b = appendUint32(b, d.s[0])
md5.go#L63: b = appendUint32(b, d.s[1])
md5.go#L64: b = appendUint32(b, d.s[2])
md5.go#L65: b = appendUint32(b, d.s[3])
md5.go#L80: b, d.s[0] = consumeUint32(b)
md5.go#L81: b, d.s[1] = consumeUint32(b)
md5.go#L82: b, d.s[2] = consumeUint32(b)
md5.go#L83: b, d.s[3] = consumeUint32(b)
md5.go#L182: binary.LittleEndian.PutUint32(digest[0:], d.s[0])
md5.go#L183: binary.LittleEndian.PutUint32(digest[4:], d.s[1])
md5.go#L184: binary.LittleEndian.PutUint32(digest[8:], d.s[2])
md5.go#L185: binary.LittleEndian.PutUint32(digest[12:], d.s[3])
md5block.go#L16: a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
md5block.go#L124: dig.s[0], dig.s[1], dig.s[2], dig.s[3] = a, b, c, d